I want to programmatically retrieve File Version information from Assembly Information window in C# code, so that I can do my further work based on that info.
So any one have idea how do I retrieve this info?
Home / DeveloperSection / Forums / How to retrieve File Version of Assembly Information window in ASP.NET C#
I want to programmatically retrieve File Version information from Assembly Information window in C# code, so that I can do my further work based on that info.
So any one have idea how do I retrieve this info?
Anonymous User
02-Dec-2014You can use:
FileVersionInfo.GetVersionInfo(Assembly.GetExecutingAssembly().Location).FileVersion;